home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / gfx / lise2.1 / lise / src / str / strlen.c < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-31  |  199 b   |  15 lines

  1. #include <stdio.h>
  2. main(argc,argv)
  3. int argc;
  4. char *argv[];
  5. {
  6. char c,s[256],z[256],e[256];
  7. int i,n;
  8.  
  9.    strcpy(s,argv[1]);      /* source string */
  10.    n=strlen(s);
  11.    printf("%d\n",n);
  12.    exit(0);
  13. }
  14.  
  15.